From: Cedric Bosdonnat Date: Fri, 2 Dec 2016 15:08:40 +0000 (+0100) Subject: libxl/libxl_x86.c: used LOG*D functions X-Git-Tag: archive/raspbian/4.11.1-1+rpi1~1^2~66^2~3298 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success//%22http:/www.example.com/cgi/success/?a=commitdiff_plain;h=e1020abf8907a9136c6449599425f31f02a1f4a7;p=xen.git libxl/libxl_x86.c: used LOG*D functions Use LOG*D logging functions where possible instead of the LOG* ones. Signed-off-by: Cédric Bosdonnat Acked-by: Wei Liu --- diff --git a/tools/libxl/libxl_x86.c b/tools/libxl/libxl_x86.c index e1844c859d..5da7504d45 100644 --- a/tools/libxl/libxl_x86.c +++ b/tools/libxl/libxl_x86.c @@ -327,7 +327,7 @@ int libxl__arch_domain_create(libxl__gc *gc, libxl_domain_config *d_config, tm = localtime_r(&t, &result); if (!tm) { - LOGE(ERROR, "Failed to call localtime_r"); + LOGED(ERROR, domid, "Failed to call localtime_r"); ret = ERROR_FAIL; goto out; } @@ -350,7 +350,7 @@ int libxl__arch_domain_create(libxl__gc *gc, libxl_domain_config *d_config, libxl_defbool_val(d_config->b_info.u.pv.e820_host)) { ret = libxl__e820_alloc(gc, domid, d_config); if (ret) { - LOGE(ERROR, "Failed while collecting E820 with: %d (errno:%d)\n", + LOGED(ERROR, domid, "Failed while collecting E820 with: %d (errno:%d)\n", ret, errno); } } @@ -532,7 +532,7 @@ int libxl__arch_domain_construct_memmap(libxl__gc *gc, e820_entries++; if (e820_entries >= E820MAX) { - LOG(ERROR, "Ooops! Too many entries in the memory map!"); + LOGD(ERROR, domid, "Ooops! Too many entries in the memory map!"); rc = ERROR_INVAL; goto out; }